home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cocktail / l2r.lha / l2r / StringBuf.h < prev   
C/C++ Source or Header  |  1992-08-20  |  367b  |  17 lines

  1. # include "ratc.h"
  2.  
  3. # ifdef __STDC__
  4. # define ARGS(parameters)    parameters
  5. # else
  6. # define ARGS(parameters)    ()
  7. # endif
  8.  
  9. extern    void    BufString        ARGS((tString string));
  10.    /* stores string 's' in the string buffer        */
  11.  
  12. extern    void    WriteStringBuffer    ();
  13.    /* the contents of the string buffer is printed    */
  14.    /* on the terminal                    */
  15.  
  16. extern    void    InitStringBuffer    ();
  17.